home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_vim.idb / usr / freeware / src / vim / patches.z / patches
Text File  |  1998-10-27  |  4KB  |  137 lines

  1. *** ./src/Makefile    Wed Feb 18 13:53:04 1998
  2. --- ../vim-5.0/./src/Makefile    Fri Mar 20 13:37:00 1998
  3. ***************
  4. *** 259,265 ****
  5.   # to the command line.  If you see strange flags during compilation, check in
  6.   # config.mk where they come from.  If it's PERL_CFLAGS, try uncommenting the
  7.   # next line.
  8. ! #CONF_OPT_PERL = --disable-perlinterp
  9.   
  10.   ### For creating Vim with Python interface
  11.   # Uncomment this when you don't want to include the Python interface,
  12. --- 259,265 ----
  13.   # to the command line.  If you see strange flags during compilation, check in
  14.   # config.mk where they come from.  If it's PERL_CFLAGS, try uncommenting the
  15.   # next line.
  16. ! CONF_OPT_PERL = --disable-perlinterp
  17.   
  18.   ### For creating Vim with Python interface
  19.   # Uncomment this when you don't want to include the Python interface,
  20. ***************
  21. *** 522,527 ****
  22. --- 522,528 ----
  23.   #
  24.   # Uncomment the next line to install Vim in your home directory.
  25.   #prefix = $(HOME)
  26. + prefix = /usr/freeware
  27.   
  28.   ### exec_prefix    is the top directory for the executable (default ${prefix})
  29.   #
  30. *** ./src/config.mk    Wed Jan 29 14:04:59 1997
  31. --- ../vim-5.0/./src/config.mk    Tue Mar 10 18:18:06 1998
  32. ***************
  33. *** 1 ****
  34. ! the first targets to make vim are: scratch config myself
  35. --- 1,82 ----
  36. ! #
  37. ! # config.mk.in -- autoconf template for Vim on Unix        vim:ts=8:sw=8:
  38. ! #
  39. ! # DO NOT EDIT config.mk!! Do not edit config.mk.in!! Edit Makefile and run
  40. ! # configure again. config.mk will be overwritten by configure.
  41. ! #
  42. ! # Configure does not edit the makefile directly. This method is not the
  43. ! # standard use of GNU autoconf, but it has two advantages:
  44. ! #   a) The user can override every choice made by configure.
  45. ! #   b) Modifications to the makefile are not lost when configure is run.
  46. ! #
  47. ! # I hope this is worth being nonstandard. jw.
  48. ! CC        = /hosts/babylon.engr/usr/dist/new_toolroots/6.2/products/freeware/latest/ptoolroot/usr/bin/cc
  49. ! DEFS        = -DHAVE_CONFIG_H
  50. ! CFLAGS        = -nostdinc -I/hosts/babylon.engr/usr/dist/new_toolroots/6.2/products/freeware/latest/proot/usr/include -D_BSD_SIGNALS -O3 -OPT:Olimit=0:space=ON -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.2/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1048,1110,1116,1185,1188,1204,1230,1233  -Wl,-woff,85,-woff,84 -Olimit 2000
  51. ! srcdir        = .
  52. ! LDFLAGS        = -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.2/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1048,1110,1116,1185,1188,1204,1230,1233  -Wl,-woff,85,-woff,84
  53. ! LIBS        = -lelf -ltermlib 
  54. ! TAGPRG        = ctags -t
  55. ! CPP        = /hosts/babylon.engr/usr/dist/new_toolroots/6.2/products/freeware/latest/ptoolroot/usr/bin/cc -E
  56. ! CPP_MM        = 
  57. ! X_CFLAGS    =  
  58. ! X_LIBS_DIR    =  
  59. ! X_PRE_LIBS    =  -lSM -lICE -lXpm
  60. ! X_EXTRA_LIBS    = 
  61. ! X_LIBS        = -lX11
  62. ! PERL        = 
  63. ! PERLLIB        = 
  64. ! SHRPENV        = 
  65. ! PERL_SRC    = 
  66. ! PERL_OBJ    = 
  67. ! PERL_PRO    = 
  68. ! PERL_CFLAGS    = 
  69. ! PYTHON_SRC    = 
  70. ! PYTHON_OBJ    = 
  71. ! PYTHON_CFLAGS    = 
  72. ! PYTHON_LIBS    = 
  73. ! PYTHON_CONFDIR    = 
  74. ! PYTHON_GETPATH_CFLAGS = 
  75. ! AWK        = nawk
  76. ! ### Top directory for everything
  77. ! prefix        = /usr/local
  78. ! ### Top directory for the binary
  79. ! exec_prefix    = ${prefix}
  80. ! ### Prefix for location of data files
  81. ! BINDIR        = ${exec_prefix}/bin
  82. ! ### Prefix for location of data files
  83. ! DATADIR        = ${prefix}/share
  84. ! ### Prefix for location of man pages
  85. ! MANDIR        = ${prefix}/man
  86. ! ### Do we have a GUI
  87. ! GUI_INC_LOC    = /usr/include/X11
  88. ! GUI_LIB_LOC    = .
  89. ! GUI_INCL    = $(MOTIF_INCL)
  90. ! GUI_SRC        = $(MOTIF_SRC)
  91. ! GUI_OBJ        = $(MOTIF_OBJ)
  92. ! GUI_DEFS    = $(MOTIF_DEFS)
  93. ! GUI_IPATH    = $(MOTIF_IPATH)
  94. ! GUI_LIBS_DIR    = $(MOTIF_LIBS_DIR)
  95. ! GUI_LIBS1    = $(MOTIF_LIBS1)
  96. ! GUI_LIBS2    = $(MOTIF_LIBS2)
  97. ! GUI_TARGETS    = $(MOTIF_TARGETS)
  98. ! GUI_MAN_TARGETS    = $(MOTIF_MAN_TARGETS)
  99. ! GUI_TESTTARGET    = $(MOTIF_TESTTARGET)
  100. ! NARROW_PROTO    = -DFUNCPROTO=7 -DNARROWPROTO
  101. ! GUI_X_LIBS    = -lXmu -lXext
  102. ! ### Any OS dependent extra source and object file
  103. ! OS_EXTRA_SRC    = 
  104. ! OS_EXTRA_OBJ    = 
  105. *** ./src/link.sh Tue Jan 13 13:47:00 1998
  106. --- ../vim-5.0/./src/link.sh       Tue Oct 20 14:02:09 1998
  107. ***************
  108. *** 55,61 ****
  109.         fi
  110.       done
  111.       if test ! -f pathdef.c; then
  112. !       make pathdef.o
  113.       fi
  114.       if test ! -f link1.sed; then
  115.         echo "link.sh: Linked fine, no libraries can be removed"
  116. --- 55,61 ----
  117.         fi
  118.       done
  119.       if test ! -f pathdef.c; then
  120. !       gmake pathdef.o
  121.       fi
  122.       if test ! -f link1.sed; then
  123.         echo "link.sh: Linked fine, no libraries can be removed"
  124.